Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates entire status output to include a second line listing which agent hooks are installed (when Entire is enabled), using the existing hook-detection logic already used by entire enable.
Changes:
- Add “Hooks installed:” line to the short effective status output when Entire is enabled and hooks are detected.
- Style agent names in the same amber/orange style used elsewhere in status output.
- Add unit tests covering enabled vs disabled behavior for showing/hiding the hooks-installed line.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
cmd/entire/cli/status.go |
Extends the short status formatter to append a styled “Hooks installed” line when applicable. |
cmd/entire/cli/status_test.go |
Adds tests asserting the hooks-installed line appears only when enabled. |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Comment @cursor review or bugbot run to trigger another review on this PR
Display which agents have hooks installed on the second line of status output, using the same detection as `entire enable`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 8066edfd0e03
Deduplicates the agent.Get + ag.Type() mapping used by both `entire enable` and `entire status`. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 900a53098fa8
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 606506ef2c3d
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 4c8616bb51b8
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 7a706189c89b
42a0a94 to
89b2f79
Compare
computermode
previously approved these changes
Apr 3, 2026
Matches the separator style of the main status line for visual consistency. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: e97b579e4b25
Contributor
Author
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: 9d54ae3daa05
c624489 to
87ec147
Compare
computermode
approved these changes
Apr 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
entire statusnow shows which agents have hooks installed on a second line below the main statusGetAgentsWithHooksInstalleddetection asentire enableTest plan
./entire statusand./entire status --detailedmise run test:ci)🤖 Generated with Claude Code
Note
Low Risk
Low risk: this only changes
entire statusoutput formatting and adds unit coverage, with no changes to hook installation logic itself.Overview
entire statusnow includes a second line when enabled that lists which agent hooks are installed (usingGetAgentsWithHooksInstalledand rendering agent display names viaagent.Get).Adds unit tests covering the enabled case (shows
Hooks installed:and the agent name) and the disabled case (suppresses the hooks line even if hooks exist).Written by Cursor Bugbot for commit 4fd3b86. Configure here.